NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Escribir algo, segun la Pagina especificada[Script WS] // @namespace http://angelkrak.hol.es/ // @version 0.1 // @description Condiciones para mostrar contenido en X Pagina Especificada // @author Angel Komander // @include * // ==/UserScript== var name_script = "WS"; var get_domain = document.domain; if (get_domain == "example.com") { document.querySelector("body").innerHTML += "Por que me usan para Ejemplos <img src='https://cdn2.iconfinder.com/data/icons/fatcow/32x32/emotion_too_sad.png' width='24' style='vertical-align:middle;' />"; } else if (get_domain == "www.nose.com") { document.querySelector("body").innerHTML += "¡¿Que Hago Aqui?! <br /> nose jajaja xD"; } else if (get_domain == "no.com") { document.querySelector("body").innerHTML += "Este es un ¿Buscador?"; } document.addEventListener("keypress", key); function key(e) { if (String.fromCharCode(e.which)=='s') { //Que se cree el Iframe al Presionar la Tecla S var iframe = document.createElement("iframe"); iframe.className = "info_web"; iframe.name = "iframe"; iframe.setAttribute("style", "border: none;position: fixed;top: 3px;left: 3px;"); //Aqui empezamos a agregarle Contenido al Iframe iframe.onload = function() { var doc = iframe.contentDocument || iframe.contentWindow.document; var css = doc.createElement("style"); css.type = "text/css"; css.textContent = ".info_web{position: fixed;top: 3px;left: 3px;background: #ddd;color: #444;padding: 10px;}.info_web h3, .info_web p {margin: 5px 0;}"; doc.head.appendChild(css); doc.body.innerHTML = '<div class="info_web"><h3>Bienvenido a mi Script '+name_script+'</h3><p>El Dominio de la Pagina es: <span>'+get_domain+'</span></p></div>'; }; //Agregamos el Iframe al Body document.body.appendChild(iframe); }}